home *** CD-ROM | disk | FTP | other *** search
/ Ultimedia 1 / Ultimedia 1.iso / tools / grafiktools / superview / install_superview.script < prev    next >
Text File  |  1994-06-06  |  854b  |  39 lines

  1. ; $VER: Install_SuperView.script V3.1 (5.6.94)
  2. ; © 1993-94 by Andreas R. Kleinert.
  3. ; This is the Installer Script for SuperView
  4.  
  5. (copyfiles
  6.   (prompt "Installing SuperView now. Libraries have to be installed separately.")
  7.   (help @copyfiles-help)
  8.   (source ":SuperView")
  9.   (set svcomdir
  10.           (askdir
  11.              (prompt "Select path to install SuperView to")
  12.              (help @askdir-help)
  13.              (newpath)
  14.              (default "SYS:SuperView")
  15.           )
  16.   )
  17.   (dest svcomdir)
  18.   (all)
  19.   (confirm)
  20. )
  21.  
  22. (copyfiles
  23.   (prompt "Installing Catalog-Files für OS V2.1+ Code localization.")
  24.   (help @copyfiles-help)
  25.   (source ":SuperView/locale/catalogs")
  26.   (set svcomdir
  27.           (askdir
  28.              (prompt "Select path to install Catalogs to")
  29.              (help @askdir-help)
  30.              (newpath)
  31.              (default "SYS:locale/Catalogs")
  32.           )
  33.   )
  34.   (dest svcomdir)
  35.   (all)
  36.   (confirm)
  37. )
  38.  
  39.